type golang.org/x/tools/internal/event/keys.UInt16

9 uses

	golang.org/x/tools/internal/event/keys (current package)
		keys.go#L295: type UInt16 struct {
		keys.go#L301: func NewUInt16(name, description string) *UInt16 {
		keys.go#L302: 	return &UInt16{name: name, description: description}
		keys.go#L305: func (k *UInt16) Name() string        { return k.name }
		keys.go#L306: func (k *UInt16) Description() string { return k.description }
		keys.go#L308: func (k *UInt16) Format(w io.Writer, buf []byte, l label.Label) {
		keys.go#L313: func (k *UInt16) Of(v uint16) label.Label { return label.Of64(k, uint64(v)) }
		keys.go#L316: func (k *UInt16) Get(lm label.Map) uint16 {
		keys.go#L324: func (k *UInt16) From(t label.Label) uint16 { return uint16(t.Unpack64()) }